home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CDOS10.ARJ / FILEFCTS.H next >
C/C++ Source or Header  |  1992-07-07  |  1KB  |  42 lines

  1. #if !defined (FILEFCTS)           /* Prevents multiple declarations errors */
  2. #define FILEFCTS
  3.  
  4.  
  5. /*----- Library Header Files ----------------------------------------------*/
  6.  
  7. #include <stdio.h>
  8.  
  9.  
  10. /*----- Global TypeDefs ---------------------------------------------------*/
  11.  
  12. #include "stdtype.h"
  13.  
  14.  
  15. /*----- Prototype ---------------------------------------------------------*/
  16.  
  17. int far fnewline                     /* Goes to end of line in a text file */
  18.  
  19. ( FILE *f ) ;                                                    /* Stream */
  20.  
  21.  
  22. /*----- Prototype ---------------------------------------------------------*/
  23.  
  24. dword far fsize                               /* Return file size in bytes */
  25.  
  26. ( FILE *f ) ;                                      /* Ptr to opened stream */
  27.  
  28.  
  29. /*----- Prototype ---------------------------------------------------------*/
  30.  
  31. int far fcopy                                          /* Copy a disk file */
  32.  
  33. ( char huge *srcpath,                      /* Complete path to source file */
  34.   char huge *destpath,                 /*Complete path to destination file */
  35.   bool      verify                   /* TRUE: Verify ON  FALSE: Verify OFF */
  36. ) ;
  37.  
  38.  
  39. /*----- End Header File ---------------------------------------------------*/
  40.  
  41. #endif
  42.